/*
 * @Author: ZhangMinLong
 * @Date: 2023-08-17 10:41:57
 * @LastEditors: ZhangMinLong
 * @LastEditTime: 2024-04-09 16:52:38
 * @Description: Remove the default style of browser
 */
a {
  text-decoration: none;
  color: inherit;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-400.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-500.ttf") format("truetype");
  font-weight: 500;
}
.container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: transparent;
}
.container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(122, 122, 122, 0.381);
}
.container::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}
* {
  box-sizing: border-box;
  font-family: "Roboto";
}
html {
  color: #000000;
  background: #fff;
  font-size: 14px;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
body {
  height: 100%;
  width: 100%;
  font-size: 14px;
  /* overflow: hidden; */
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
/* h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal} */
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-size: 100%;
}
legend {
  color: #000;
}
img {
  height: 100%;
}
section {
  padding: 0 8.33333vw;
}
/*********************** flex ***********************/
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.flex-row-start {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.flex-row-end {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.flex-row-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.flex-row-around {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-col-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.flex-col-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.flex-col-between {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: space-between;
}
.flex-col-around {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: space-around;
}
.flex-col-between-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
